{% extends 'core/_base.html' %} {% block title %} Manage Product {% endblock title %} {% block body %}
Manage Product
{% if products %}
{% for product in products %} {%if product.in_stock %} {% else %} {%endif%} {% endfor %}
SL. Name Unit Brand Category Status Action
{{ forloop.counter }} {{ product.name }} {{ product.unit|title }} {{ product.brand }} {{ product.category }}In StockOut of Stock
{% if products.has_previous %} Previous {% endif %}
{% if products.has_next %} Next {% endif %}

Showing {{ products.number }}/{{ products.paginator.num_pages }}

{% else %} {% include 'core/info/message.html' %} {% endif %}
{% endblock body %}